home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cocktail / cg.lha / cg / m2c / Positions.h < prev    next >
C/C++ Source or Header  |  1992-11-24  |  506b  |  19 lines

  1. #define DEFINITION_Positions
  2.  
  3. #ifndef DEFINITION_IO
  4. #include "IO.h"
  5. #endif
  6.  
  7. #ifndef DEFINITION_Idents
  8. #include "Idents.h"
  9. #endif
  10.  
  11. typedef struct Positions_1 {
  12.     Idents_tIdent File;
  13.     SHORTCARD Line, Column;
  14. } Positions_tPosition;
  15. extern Positions_tPosition Positions_NoPosition;
  16. extern INTEGER Positions_Compare ARGS((Positions_tPosition Position1, Positions_tPosition Position2));
  17. extern void Positions_WritePosition ARGS((IO_tFile File, Positions_tPosition Position));
  18. extern void BEGIN_Positions();
  19.